home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CONTAS2.PAK / CHILDFRM.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  962b  |  41 lines

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CChildFrame : public CMDIChildWnd
  6. {
  7.     DECLARE_DYNCREATE(CChildFrame)
  8. public:
  9.     CChildFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CChildFrame)
  20.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  21.     //}}AFX_VIRTUAL
  22.  
  23. // Implementation
  24. public:
  25.     virtual ~CChildFrame();
  26. #ifdef _DEBUG
  27.     virtual void AssertValid() const;
  28.     virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CChildFrame)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code!
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.